home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevbbox.h < prev    next >
Text File  |  1997-03-29  |  3KB  |  75 lines

  1. /* Copyright (C) 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevbbox.h */
  20. /* Interface to bounding box device */
  21. /* Requires gxdevice.h */
  22.  
  23. /*
  24.  * This device keeps track of the per-page bounding box, and also forwards
  25.  * all drawing commands to a target.  It isn't normally a free-standing
  26.  * device, but it's used as a component (e.g., by the EPS writer).
  27.  *
  28.  * To set up a bounding box device that doesn't do any drawing:
  29.  *    gx_device_bbox *bdev =
  30.  *      gs_alloc_struct_immovable(some_memory,
  31.  *                    gx_device_bbox, &st_device_bbox,
  32.  *                    "some identifying string for debugging");
  33.  *    gx_device_bbox_init(bdev, NULL);
  34.  * Non-drawing bounding box devices have an "infinite" page size.
  35.  *
  36.  * To set up a bounding box device that draws to another device tdev:
  37.  *    gx_device_bbox *bdev =
  38.  *      gs_alloc_struct_immovable(some_memory,
  39.  *                    gx_device_bbox, &st_device_bbox,
  40.  *                    "some identifying string for debugging");
  41.  *    gx_device_bbox_init(bdev, tdev);
  42.  * Bounding box devices that draw to a real device appear to have the
  43.  * same page size as that device.
  44.  *
  45.  * To intercept the end-of-page to call a routine eop of your own:
  46.  *    dev_proc_output_page(eop);    -- declare a prototype for eop
  47.  *    bdev.std_procs.output_page = eop;
  48.  *    ...
  49.  *    int eop(gx_device *dev, int num_copies, int flush)
  50.  *    {    gs_rect bbox;
  51.  *        gx_device_bbox_bbox((gx_device_bbox *)dev, &bbox);
  52.  *        << do whatever you want >>
  53.  *        return gx_forward_output_page(dev, num_copies, flush);
  54.  *    }
  55.  */
  56. #define gx_device_bbox_common\
  57.     gx_device_forward_common;\
  58.     /* The following are updated dynamically. */\
  59.     gs_fixed_rect bbox;\
  60.     gx_color_index white
  61. typedef struct gx_device_bbox_s {
  62.     gx_device_bbox_common;
  63. } gx_device_bbox;
  64. extern_st(st_device_bbox);
  65. #define public_st_device_bbox()    /* in gdevbbox.c */\
  66.   gs_public_st_suffix_add0_final(st_device_bbox, gx_device_bbox,\
  67.     "gx_device_bbox", device_bbox_enum_ptrs, device_bbox_reloc_ptrs,\
  68.     gx_device_finalize, st_device_forward)
  69.  
  70. /* Initialize a bounding box device. */
  71. void gx_device_bbox_init(P2(gx_device_bbox *dev, gx_device *target));
  72.  
  73. /* Read back the bounding box in 1/72" units. */
  74. void gx_device_bbox_bbox(P2(gx_device_bbox *dev, gs_rect *pbbox));
  75.